-
Notifications
You must be signed in to change notification settings - Fork 490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
downgrade mysql driver version #1193
Conversation
/lgtm |
is there any plan to fix the tests? |
@lysu ok. but could you set the version to v1.4.1 instead of a git commit? |
v1.4.0 also include go-sql-driver/mysql#676, we can use v1.3.0 |
@kennytm PTAL, we have tried some way without modify parser but still have no good workaround for this.. |
@lysu let's use 1.3.0. the dependency is only imported for an optional test. |
yes, it's using 1.3.0 in the latest commit :) |
/lgtm |
* downgrade mysql driver version * use v1.4.1 * use v1.3.0
What problem does this PR solve?
#851 introduce go-sql-driver/mysql dependence with high version for test case
but https://github.com/pingcap/mysql-tester will use pingcap/parser
and go-sql-driver/mysql#676 remove Warn API and strict mode which heavy used in pingcap/mysql-tester and pingcap/tidb-test.
(warn can workaround but strict need modify large number for tidb-test testcase)
so this PR choose downgrade mysql/driver version
What is changed and how it works?
downgrade veresion
Check List
Tests
Code changes
Side effects
Related changes
This change is